home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / findch2r / frmedit.frm (.txt) < prev    next >
Visual Basic Form  |  1999-08-25  |  5KB  |  178 lines

  1. VERSION 5.00
  2. Begin VB.Form frmEdit 
  3.    BackColor       =   &H00000000&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "Edit"
  6.    ClientHeight    =   3435
  7.    ClientLeft      =   4635
  8.    ClientTop       =   2100
  9.    ClientWidth     =   1515
  10.    Icon            =   "frmEdit.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   3435
  15.    ScaleWidth      =   1515
  16.    Begin VB.CommandButton cmdDone 
  17.       Caption         =   "done"
  18.       Height          =   375
  19.       Left            =   120
  20.       MousePointer    =   10  'Up Arrow
  21.       TabIndex        =   0
  22.       Top             =   3000
  23.       Width           =   1095
  24.    End
  25.    Begin VB.Label lblFindNext 
  26.       BackColor       =   &H80000012&
  27.       Caption         =   "Find Next"
  28.       BeginProperty Font 
  29.          Name            =   "MS Sans Serif"
  30.          Size            =   12
  31.          Charset         =   0
  32.          Weight          =   700
  33.          Underline       =   0   'False
  34.          Italic          =   0   'False
  35.          Strikethrough   =   0   'False
  36.       EndProperty
  37.       ForeColor       =   &H00FF0000&
  38.       Height          =   375
  39.       Left            =   120
  40.       MousePointer    =   10  'Up Arrow
  41.       TabIndex        =   6
  42.       Top             =   2520
  43.       Width           =   1215
  44.    End
  45.    Begin VB.Label lblFind 
  46.       BackColor       =   &H80000012&
  47.       Caption         =   "Find"
  48.       BeginProperty Font 
  49.          Name            =   "MS Sans Serif"
  50.          Size            =   12
  51.          Charset         =   0
  52.          Weight          =   700
  53.          Underline       =   0   'False
  54.          Italic          =   0   'False
  55.          Strikethrough   =   0   'False
  56.       EndProperty
  57.       ForeColor       =   &H00FF0000&
  58.       Height          =   375
  59.       Left            =   120
  60.       MousePointer    =   10  'Up Arrow
  61.       TabIndex        =   5
  62.       Top             =   2040
  63.       Width           =   1215
  64.    End
  65.    Begin VB.Label lblSelectAll 
  66.       BackColor       =   &H80000012&
  67.       Caption         =   "Select All"
  68.       BeginProperty Font 
  69.          Name            =   "MS Sans Serif"
  70.          Size            =   12
  71.          Charset         =   0
  72.          Weight          =   700
  73.          Underline       =   0   'False
  74.          Italic          =   0   'False
  75.          Strikethrough   =   0   'False
  76.       EndProperty
  77.       ForeColor       =   &H00FF0000&
  78.       Height          =   375
  79.       Left            =   120
  80.       MousePointer    =   10  'Up Arrow
  81.       TabIndex        =   4
  82.       Top             =   1560
  83.       Width           =   1215
  84.    End
  85.    Begin VB.Label lblPaste 
  86.       BackColor       =   &H80000012&
  87.       Caption         =   "Paste"
  88.       BeginProperty Font 
  89.          Name            =   "MS Sans Serif"
  90.          Size            =   12
  91.          Charset         =   0
  92.          Weight          =   700
  93.          Underline       =   0   'False
  94.          Italic          =   0   'False
  95.          Strikethrough   =   0   'False
  96.       EndProperty
  97.       ForeColor       =   &H00FF0000&
  98.       Height          =   375
  99.       Left            =   120
  100.       MousePointer    =   10  'Up Arrow
  101.       TabIndex        =   3
  102.       Top             =   1080
  103.       Width           =   1215
  104.    End
  105.    Begin VB.Label lblCopy 
  106.       BackColor       =   &H80000012&
  107.       Caption         =   "Copy"
  108.       BeginProperty Font 
  109.          Name            =   "MS Sans Serif"
  110.          Size            =   12
  111.          Charset         =   0
  112.          Weight          =   700
  113.          Underline       =   0   'False
  114.          Italic          =   0   'False
  115.          Strikethrough   =   0   'False
  116.       EndProperty
  117.       ForeColor       =   &H00FF0000&
  118.       Height          =   375
  119.       Left            =   120
  120.       MousePointer    =   10  'Up Arrow
  121.       TabIndex        =   2
  122.       Top             =   600
  123.       Width           =   1215
  124.    End
  125.    Begin VB.Label lblCut 
  126.       BackColor       =   &H80000012&
  127.       Caption         =   "Cut"
  128.       BeginProperty Font 
  129.          Name            =   "MS Sans Serif"
  130.          Size            =   12
  131.          Charset         =   0
  132.          Weight          =   700
  133.          Underline       =   0   'False
  134.          Italic          =   0   'False
  135.          Strikethrough   =   0   'False
  136.       EndProperty
  137.       ForeColor       =   &H00FF0000&
  138.       Height          =   375
  139.       Left            =   120
  140.       MousePointer    =   10  'Up Arrow
  141.       TabIndex        =   1
  142.       Top             =   120
  143.       Width           =   1215
  144.    End
  145. Attribute VB_Name = "frmEdit"
  146. Attribute VB_GlobalNameSpace = False
  147. Attribute VB_Creatable = False
  148. Attribute VB_PredeclaredId = True
  149. Attribute VB_Exposed = False
  150. Private Sub cmdDone_Click()
  151.     frmEdit.Hide
  152.     frmHElp.Show
  153. End Sub
  154. Private Sub lblCopy_Click()
  155.     frmCopy.Show
  156.     frmEdit.Hide
  157. End Sub
  158. Private Sub lblCut_Click()
  159.     frmCut.Show
  160.     frmEdit.Hide
  161. End Sub
  162. Private Sub lblFind_Click()
  163.     frmFind.Show
  164.     frmEdit.Hide
  165. End Sub
  166. Private Sub lblFindNext_Click()
  167.     frmFind.Show
  168.     frmEdit.Hide
  169. End Sub
  170. Private Sub lblPaste_Click()
  171.     frmpaste.Show
  172.     frmEdit.Hide
  173. End Sub
  174. Private Sub lblSelectAll_Click()
  175.     frmSelectAll.Show
  176.     frmEdit.Hide
  177. End Sub
  178.